home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #1 / Amiga Plus 1999 #1.iso / System-Boost / Workbench / LFSystemBinder / compagnons / Registry / Includes / Libraries / Registry.h
Encoding:
C/C++ Source or Header  |  1998-06-21  |  565 b   |  30 lines

  1. /*
  2.  *  Registry.H
  3.  *      © LFSoft 1995
  4.  *
  5.  *  Some definition for registry.library.
  6.  *
  7.  *  29-08-1995  V1.0
  8.  *
  9.  */
  10.  
  11. #ifndef REGISTRY_H
  12. #define REGISTRY_H
  13.  
  14. #include <exec/ports.h>
  15. #include <exec/libraries.h>
  16.  
  17. struct RLMessage {  // Notification's message
  18.     struct Message Msg;
  19.     ULONG  Class;
  20.     UWORD  Code;
  21. };
  22.  
  23.     // Notification's types
  24. enum {  RL_TP_NOTIF=0,  // Normal notification (RL_Notify)
  25.         RL_TP_NWF,      // Notification when this resource became locking's free.
  26.         RL_TP_NINV      // Utilisé uniquement par la librairie
  27.     };
  28.  
  29. #endif
  30.